home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1991 / 01 / b_delete.c < prev    next >
Text File  |  1990-10-31  |  457b  |  12 lines

  1. /* b_delete.c -- Listing 6. */
  2.  
  3. #include <stdlib.h>
  4. #include "textbuf.h"
  5.  
  6. PUBLIC void b_delete( textbuf *b )    /* Free a textbuf allocated by   */
  7. {                                     /* a previous b_malloc().        */
  8.     if( b_destruct( b ) )             /* Explicitly declared textbuf's */
  9.         free( b );                    /* can be destroyed with an ex-  */
  10. }                                     /* plicit b_destruct() call.     */
  11.  
  12.